home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_11 / schmidt / impdef.c < prev    next >
C/C++ Source or Header  |  1995-09-05  |  707b  |  18 lines

  1. #include <stddef.h>
  2.  
  3. extern int X234567;  /* # of significant initial
  4.                         characters (beyond 6) in extern */
  5.                      /* whether extern case is distinct */
  6. char c = sizeof(c);  /* sizeof(char) */
  7.                      /* sign of char */
  8. int m = 5 % -2;      /* sign of remainder */
  9. int n = NULL;        /* value of NULL after expansion */
  10. int *p = 1;          /* casting int to pointer */
  11. struct t
  12.     {
  13.     int i : 2;       /* whether plain int bit-field
  14.                         treated as signed or unsigned */
  15.     unsigned u : 16; /* whether bit-field can straddle
  16.                         storage boundary */
  17.     };               /* order of bit-fields */
  18.